﻿@charset "UTF-8";
html, body, div, ul, ol, li, dl, dt, dd, h1, h2, h3, h4, h5, h6, form, fieldset, input, button, textarea, p, blockquote, table, tr, th, td {
    padding: 0;
    margin: 0;
}
body{
    color: #333;
    font-family:Microsoft Yahei,'微软雅黑', '宋体';
    overflow-x: hidden;
}
input,textarea{
    outline: none;
    resize: none;
    height: 26px;
}

img{
    border:none;
    cursor:pointer;
}
*{
    box-sizing: border-box;
}

ul,li,dl,dt,dd{
    list-style: none;
    font-weight:normal;
    text-decoration: none;
    font-style: normal;
}
a,em,span,b,i{
    list-style: none;
    font-weight:normal;
    text-decoration: none;
    font-style: normal;
    display: inline-block;
}
/*清除浮动*/
.clear{
    clear:both;
}
.clearfix:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
    font-size:0;
}
.clearfix {
    *zoom:1;
}

/*内容居中*/
.content{
    width: 100%;
    margin:0 auto;
    max-width: 1200px;
}
/*左、右浮动*/
.fl{
    float: left;
}
.fr{
    float: right;
}

/*文字对其方式*/
.left{
    text-align: left;
}
.center{
    text-align: center;
}
.right{
    text-align: right;
}
/*隐藏显示*/
.none{
    display: none;
}
.block{
    display: block;
}
.inline{
    display: inline-block;
}
/*定位*/
.pr{
    position: relative;
}

.pa{
    position: absolute;
}

.pf {
    position: fixed;
}
/*隐藏*/
.ofh {
    overflow: hidden;
}
/*面包屑导航*/
.crumbs{
    padding: 20px 0;
    width: 100%;
}
.crumbs em{
    width: 16px;
    height: 16px;
    background: url("../images/home.png") no-repeat center center;
    margin-right: 10px;
    margin-bottom: -2px;
}
.crumbs a{
    display: inline-block;
    font-size: 14px;
    color:#666;
}
.crumbs i{
    font-size: 14px;
    color:#666;
    margin: 0 5px;
}
.crumbs span{
    font-size: 14px;
    color:#c30b0b;
}

/*分页*/
.page{
    text-align: center;
}

.page ul li{
    display: inline-block;
    padding: 8px 15px;
    border:1px solid #dcdcdc;
    margin: 0 4px;
    cursor: pointer;
    border-radius: 3px;
    background: #fff;
}
.page ul li a{
    display: inline-block;
    font-size: 14px;
    color:#333;
}
.page ul li.active{
    background: #2b2f36;
    border:1px solid #2b2f36;
}
.page ul li.active a{
    color:#fff;
}

/*主题色  red*/
.c-theme{
    color:#c30b0b!important;
}
.bd-theme{
    border:1px solid #c30b0b;
}
.bg-theme{
    background:#c30b0b;
}
/**/
.c-themeT{
    color:#ff4242;
}
.bd-themeT{
    border:1px solid #ff4242;
}
.bg-themeT{
    background: #ff4242;
}

.bg-themeS{
    background: #124191;
}
.c-themeS{
    color:#124191!important;
}
.bd-themeS{
    border:1px solid #124191;
}

.bg-themeF{
    background: #00c9ff;
}
.c-themeF{
    color:#00c9ff!important;
}
.bd-themeF{
    border:1px solid #00c9ff;
}

.bg-themeT{
    background: #ff4242;
}
.c-blue{
    color: #124191!important;
}
.bg-fff{
    background: #fff;
}
.bg-f2{
    background: #f2f2f2;
}

.c-fff{
    color:#fff!important;
}
.bg-f8{
    background: #f8f8f8;
}

/*//////////////////////*/
.pt50{
    padding-top: 50px;
}
.pb10{
    padding-bottom: 10px;
}
.pb60{
    padding-bottom: 60px;
}
/*弹出框*/
.mask{
    position: fixed;
    top:0;
    left:0;
    z-index: 40;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.5);
}
.maskpa{
    position: absolute;
    top:10%;
    left:50%;
    transform: translateX(-50%);
    padding: 100px 160px 0;
    width: 960px;
    height:550px;
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: unset;
}
.logoimg{
    width: 140px;
    margin-right: 2%;
    margin-bottom: 20px;
}
.maskcont{
    width: 80%;
}
.maskcont h4{
    padding: 0 0 30px;
    font-size: 28px;
    color:#333;
    font-weight: 400;
}
.maskcont p{
    padding-bottom: 30px;
    line-height: 25px;
    font-size: 14px;
    color:#666;
}
.maskcont a{
    padding: 12px 46px;
    font-size: 14px;
    color:#fff;
    background: #219ed9;
    border-radius: 30px;
}
.close{
    position: absolute;
    top:20px;
    right:20px;
    width: 24px;
    height: 24px;
    background: url("../images/close.png") no-repeat center center;
    cursor: pointer;
}